home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global givState
- MessagePut("in previous button callback")
- set clik to the clickOn
- if count(the questionSelectList of givState) < 1 then
- nothing()
- exit
- end if
- PlaySoundWait("CLIK2.AIF")
- if the mode of givState = #edit then
- set the castNum of sprite clik to the number of cast "previous button down"
- set tmp to the number of cast "previous button down"
- else
- set the castNum of sprite clik to the number of cast "play mode previous button down"
- set tmp to the number of cast "play mode previous button down"
- MessagePut("HV: " && the locH of sprite clik && the locV of sprite clik)
- end if
- updateStage()
- repeat while the stillDown
- nothing()
- end repeat
- MessagePut("the mouseCast " && the mouseCast)
- if the mouseCast = tmp then
- if (the activeVideoMode of givState = #play) or (the activeVideoMode of givState = #pause) then
- pass()
- else
- MessagePut("question select list" && the questionSelectList of givState)
- set ct to count(the questionSelectList of givState)
- if ct > 0 then
- set ptr to the selectListPlaybackPtr of givState
- set ptr to ptr - 1
- if ptr < 1 then
- set ptr to ct
- end if
- set the selectListPlaybackPtr of givState to ptr
- SetMonitorPtr(givState, the activeMonitor of givState, getAt(the questionSelectList of givState, ptr))
- SetQuestionTextBoxHilite(getAt(the questionSelectList of givState, ptr))
- DisplayMonitor(the activeMonitor of givState)
- end if
- end if
- end if
- if the mode of givState = #edit then
- set the castNum of sprite clik to the number of cast "previous button"
- else
- set the castNum of sprite clik to the number of cast "play mode previous button"
- end if
- end
-